home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / swingall.jar / javax / swing / plaf / basic / ComboPopup.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-07-15  |  472 b   |  25 lines

  1. package javax.swing.plaf.basic;
  2.  
  3. import java.awt.event.KeyListener;
  4. import java.awt.event.MouseListener;
  5. import java.awt.event.MouseMotionListener;
  6. import javax.swing.JList;
  7.  
  8. public interface ComboPopup {
  9.    KeyListener getKeyListener();
  10.  
  11.    JList getList();
  12.  
  13.    MouseListener getMouseListener();
  14.  
  15.    MouseMotionListener getMouseMotionListener();
  16.  
  17.    void hide();
  18.  
  19.    boolean isVisible();
  20.  
  21.    void show();
  22.  
  23.    void uninstallingUI();
  24. }
  25.